home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _C0DF96E8251D4EE69C0967D28CD7E2C8 < prev    next >
Encoding:
Text File  |  2006-08-04  |  572 b   |  24 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_UnsharpMask():
  13.     return {
  14.         'Clipping': 80, 
  15.         'Radius': 100, 
  16.         'Strength': 350,
  17.     'Luminance': False
  18.         }
  19.  
  20. def Do(Environment):
  21.     # Unsharp Mask
  22.     App.Do( Environment, 'UnsharpMask',         Preset_UnsharpMask())
  23.  
  24.